redundancy check - определение. Что такое redundancy check
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое redundancy check - определение

TECHNIQUES THAT ENABLE RELIABLE DELIVERY OF DIGITAL DATA OVER UNRELIABLE COMMUNICATION CHANNELS
Error-detecting system; Redundancy check; Error control; Error correction; Error-detecting code; Error detection; Error detector; Error checking; Error-correction; Error Control Coding; Error Correction; Error detecting code; Error Checking and Correcting; Error correction and detection; Error Detection; Error coding; Error detection code; Error recovery; Error-correcting; Error detection coding; Error detection & correction; EDAC (Linux); Bluesmoke (Linux); Error checking and correcting
  • To clean up transmission errors introduced by Earth's atmosphere (left), Goddard scientists applied Reed–Solomon error correction (right), which is commonly used in CDs and DVDs. Typical errors include missing pixels (white) and false signals (black). The white stripe indicates a brief period when transmission was interrupted.
Найдено результатов: 475
cyclic redundancy check         
TYPE OF HASH FUNCTION USED TO DETECT ERRORS IN DATA STORAGE OR TRANSMISSION
Cyclic Redundancy Check; FCS-32; Cyclic redundancy code; CRC16; Crc64; Crc32 mpeg2; Crc16; Cyclic redundancy checks; CRC-24; CRC-16; CRC-8; CRC-64; Cyclical redundancy checking; CRC-CCITT; CRC-12; Crc32c; CRC32c; CRC8; Cyclic redundancy; Cyclic redundancy checksum; CRC-32C; CRC-32K; CRC check; CRC Values; Polynomial representations of cyclic redundancy checks; Polynomial CRC representations; List of CRC polynomials
<algorithm> (CRC or "cyclic redundancy code") A number derived from, and stored or transmitted with, a block of data in order to detect corruption. By recalculating the CRC and comparing it to the value originally transmitted, the receiver can detect some types of transmission errors. A CRC is more complicated than a checksum. It is calculated using division either using shifts and exclusive ORs or table lookup (modulo 256 or 65536). The CRC is "redundant" in that it adds no information. A single corrupted bit in the data will result in a one bit change in the calculated CRC but multiple corrupted bits may cancel each other out. CRCs treat blocks of input bits as coefficient-sets for polynomials. E.g., binary 10100000 implies the polynomial: 1*x^7 + 0*x^6 + 1*x^5 + 0*x^4 + 0*x^3 + 0*x^2 + 0*x^1 + 0*x^0. This is the "message polynomial". A second polynomial, with constant coefficients, is called the "generator polynomial". This is divided into the message polynomial, giving a quotient and remainder. The coefficients of the remainder form the bits of the final CRC. So, an order-33 generator polynomial is necessary to generate a 32-bit CRC. The exact bit-set used for the generator polynomial will naturally affect the CRC that is computed. Most CRC implementations seem to operate 8 bits at a time by building a table of 256 entries, representing all 256 possible 8-bit byte combinations, and determining the effect that each byte will have. CRCs are then computed using an input byte to select a 16- or 32-bit value from the table. This value is then used to update the CRC. Ethernet packets have a 32-bit CRC. Many disk formats include a CRC at some level. (1997-08-02)
Cyclic redundancy check         
TYPE OF HASH FUNCTION USED TO DETECT ERRORS IN DATA STORAGE OR TRANSMISSION
Cyclic Redundancy Check; FCS-32; Cyclic redundancy code; CRC16; Crc64; Crc32 mpeg2; Crc16; Cyclic redundancy checks; CRC-24; CRC-16; CRC-8; CRC-64; Cyclical redundancy checking; CRC-CCITT; CRC-12; Crc32c; CRC32c; CRC8; Cyclic redundancy; Cyclic redundancy checksum; CRC-32C; CRC-32K; CRC check; CRC Values; Polynomial representations of cyclic redundancy checks; Polynomial CRC representations; List of CRC polynomials
A cyclic redundancy check (CRC) is an error-detecting code commonly used in digital networks and storage devices to detect accidental changes to digital data. Blocks of data entering these systems get a short check value attached, based on the remainder of a polynomial division of their contents.
Vertical Redundancy Check         
TELECOMMUNICATIONS REDUNDANCY CHECK
Vertical redundancy check; Vertical redundancy checking
<storage, communications> (VRC) An error checking method performed on one 8-bit ASCII character, where the 8th bit is used as the parity bit. The resulting parity bit is constructed by XORing the word. The result is a "1" if there is an odd number of 1s, and a "0" if there is an even number of 1s in the word. This method is unreliable because if an odd number of bits are distorted, the check will not detect the error. The Longitudinal Redundancy Check is an improvement. (2001-04-28)
Transverse redundancy check         
TELECOMMUNICATIONS REDUNDANCY CHECK
Vertical redundancy check; Vertical redundancy checking
In telecommunications, a transverse redundancy check (TRC) or vertical redundancy check is a redundancy check for synchronized parallel bits applied once per bit time, across the bit streams. This requires additional parallel channels for the check bit or bits.
cyclic redundancy code         
TYPE OF HASH FUNCTION USED TO DETECT ERRORS IN DATA STORAGE OR TRANSMISSION
Cyclic Redundancy Check; FCS-32; Cyclic redundancy code; CRC16; Crc64; Crc32 mpeg2; Crc16; Cyclic redundancy checks; CRC-24; CRC-16; CRC-8; CRC-64; Cyclical redundancy checking; CRC-CCITT; CRC-12; Crc32c; CRC32c; CRC8; Cyclic redundancy; Cyclic redundancy checksum; CRC-32C; CRC-32K; CRC check; CRC Values; Polynomial representations of cyclic redundancy checks; Polynomial CRC representations; List of CRC polynomials
Longitudinal redundancy check         
ERROR DETECTION NUMBER CALCULATED OVER A SERIAL DATA STREAM
Horizontal redundancy check; ISO 1155; Optimal rectangular code; Optimal Rectangular Code; ORC (code)
In telecommunication, a longitudinal redundancy check (LRC), or horizontal redundancy check, is a form of redundancy check that is applied independently to each of a parallel group of bit streams. The data must be divided into transmission blocks, to which the additional check data is added.
Longitudinal Redundancy Check         
ERROR DETECTION NUMBER CALCULATED OVER A SERIAL DATA STREAM
Horizontal redundancy check; ISO 1155; Optimal rectangular code; Optimal Rectangular Code; ORC (code)
<storage, communications> (LRC, Block Redundancy Check) An error checking method that generates a longitudinal parity byte from a specified string or block of bytes on a longitudinal track. The longitudinal parity byte is created by placing individual bytes of a string in a two-dimensional array and performing a Vertical Redundancy Check vertically and horizontally on the array, creating an extra byte. This is an improvement over the VRC because it will catch two errors in the individual characters of the string, beyond the odd errors. (2004-01-26)
Redundancy in United Kingdom law         
RIGHTS OF EMPLOYEES IF THEY ARE DISMISSED FOR ECONOMIC REASONS IN UK LABOUR LAW
User:RichsLaw/Redundancy in English law; Redundancy in English law
Redundancy in United Kingdom law concerns the rights of employees if they are dismissed for economic reasons in UK labour law.
cashier's check         
CHEQUE FROM THE DIRECT FUNDS OF A FINANCIAL INSTITUTION
Bank cheque; Cashiers check; Cashier's cheque; Bank Cheque; Bank check; Treasurer's cheque; Treasurer's check; Cashier's Check; Teller's Check; Official check; Cashiers checks; Cashier check; Officer's check; Manager's check; Cashier’s order; Cashier's order
n. a check issued by a bank on its own account for the amount paid to the bank by the purchaser with a named payee, and stating the name of the party purchasing the check (the remitter). The check is received as cash since it is guaranteed by the bank and does not depend on the account of a private individual or business. Cashiers' checks are commonly used when payment must be credited immediately upon receipt for business, real estate transfers, tax payments and the like.
Cashier's check         
CHEQUE FROM THE DIRECT FUNDS OF A FINANCIAL INSTITUTION
Bank cheque; Cashiers check; Cashier's cheque; Bank Cheque; Bank check; Treasurer's cheque; Treasurer's check; Cashier's Check; Teller's Check; Official check; Cashiers checks; Cashier check; Officer's check; Manager's check; Cashier’s order; Cashier's order
·add. ·- A check drawn by a bank upon its own funds, signed by the cashier.

Википедия

Error detection and correction

In information theory and coding theory with applications in computer science and telecommunication, error detection and correction (EDAC) or error control are techniques that enable reliable delivery of digital data over unreliable communication channels. Many communication channels are subject to channel noise, and thus errors may be introduced during transmission from the source to a receiver. Error detection techniques allow detecting such errors, while error correction enables reconstruction of the original data in many cases.